home *** CD-ROM | disk | FTP | other *** search
/ SPACE 2 / SPACE - Library 2 - Volume 1.iso / program / 316 / libsrc / clearerr.c < prev    next >
Encoding:
C/C++ Source or Header  |  1988-10-20  |  135 b   |  11 lines

  1.  
  2. /* not sure exactly what this does... */
  3.  
  4. #include "std-guts.h"
  5.  
  6. clearerr(f)
  7. struct file * f;
  8. {
  9.   f->last_file_error = 0;
  10. }
  11.